home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / gtksourceview-2.0 / language-specs / language.dtd < prev    next >
Text File  |  2009-10-02  |  2KB  |  73 lines

  1. <!--
  2.  
  3.  Copyright (C) 2006 Paolo Maggi <paolo@gnome.org>
  4.  Copyright (C) 2006 Leonardo Ferreira Fontenelle <leo.fontenelle@gmail.com>
  5.  
  6.  This library is free software; you can redistribute it and/or
  7.  modify it under the terms of the GNU Library General Public
  8.  License as published by the Free Software Foundation; either
  9.  version 2 of the License, or (at your option) any later version.
  10.  
  11.  This library is distributed in the hope that it will be useful,
  12.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  Library General Public License for more details.
  15.  
  16.  You should have received a copy of the GNU Library General Public
  17.  License along with this library; if not, write to the
  18.  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19.  Boston, MA 02111-1307, USA.
  20.  
  21. -->
  22. <!-- FIXME: the "name" attribute can be "_name" to be marked for translation -->
  23. <!ENTITY % itemattrs
  24.  "name  CDATA #REQUIRED
  25.   style CDATA #REQUIRED">
  26.  
  27. <!ELEMENT language (escape-char?,(line-comment|block-comment|string|syntax-item|pattern-item|keyword-list)+)>
  28. <!-- FIXME: the "name" and "section" attributes can be prefixed with
  29.      "_" to be marked for translation -->
  30. <!ATTLIST language
  31.   name                CDATA #REQUIRED
  32.   version             CDATA #REQUIRED
  33.   section             CDATA #REQUIRED
  34.   translation-domain  CDATA #IMPLIED
  35.   mimetypes           CDATA #REQUIRED>
  36.  
  37. <!ELEMENT escape-char (#PCDATA)>
  38.  
  39. <!ELEMENT line-comment (start-regex)>
  40. <!ATTLIST line-comment
  41.   %itemattrs;>
  42.  
  43. <!ELEMENT block-comment (start-regex,end-regex)>
  44. <!ATTLIST block-comment
  45.   %itemattrs;>
  46.  
  47. <!ELEMENT string (start-regex,end-regex)>
  48. <!ATTLIST string
  49.   %itemattrs;
  50.   end-at-line-end (true|false) "true">
  51.  
  52. <!ELEMENT syntax-item (start-regex,end-regex)>
  53. <!ATTLIST syntax-item
  54.   %itemattrs;>
  55.  
  56. <!ELEMENT pattern-item (regex)>
  57. <!ATTLIST pattern-item
  58.   %itemattrs;>
  59.  
  60. <!ELEMENT keyword-list (keyword+)>
  61. <!ATTLIST keyword-list
  62.   %itemattrs;
  63.   case-sensitive                  (true|false) "true"
  64.   match-empty-string-at-beginning (true|false) "false"
  65.   match-empty-string-at-end       (true|false) "false"
  66.   beginning-regex                 CDATA        #IMPLIED
  67.   end-regex                       CDATA        #IMPLIED>
  68.  
  69. <!ELEMENT start-regex (#PCDATA)>
  70. <!ELEMENT end-regex (#PCDATA)>
  71. <!ELEMENT regex (#PCDATA)>
  72. <!ELEMENT keyword (#PCDATA)>
  73.